home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000179_news@columbia.edu _Sun Oct 10 10:55:04 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA22798
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 10 Oct 1999 10:55:04 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA02787
  7.     for kermit.misc@watsun.cc.columbia.edu; Sun, 10 Oct 1999 10:30:58 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: set line: Sorry can't open connection
  11. Date: 10 Oct 1999 14:30:57 GMT
  12. Organization: Columbia University
  13. Message-ID: <7tq7v1$2n1$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <38003AEC.C6CA47FA@mediaone.net>,
  17. Art Wildman  <wildman@mediaone.net> wrote:
  18. : Pretty basic stuff, but it's been a long time since I've setup serial devs...
  19. : While trying to test a port on HPUX...
  20. What version of C-Kermit do you have?
  21.  
  22. : C-Kermit> c
  23. : set line /dev/tty2a3
  24. : set speed 9600
  25. : parity=space
  26. : duplex=half
  27. Those last two should be:
  28.  
  29.   set parity space
  30.   set duplex half
  31.  
  32. : Can send string from pc com1 to hp tty2a3 OK.
  33. : "The quick brown fox..."
  34. How do you know it's OK?  C-Kermit is in CONNECT mode and you see it on
  35. the HP's screen?
  36.  
  37. How is the PC connected to the HP?  A null modem cable?  A *true* null
  38. modem cable, or the fakeout kind?  Did you build it yourself?  How do you
  39. know it's wired appropriately?
  40.  
  41. : am unable to send same string from hp tty2a3 to pc using
  42. : procomm-vt100-kermit and have it display in procomm terminal/chat window.
  43. Obviously that's a question for the Procomm people.
  44.  
  45. : while playnig around with port settings (duplex=full) I managed to lock up
  46. : kermit.
  47. :
  48. What makes you conclude it is locked up?  Are you saying it was in CONNECT
  49. mode, and then you could no longer escape back?  Or that it was in command
  50. mode and would no longer respond to commands?  Please be specific about what
  51. state it was in and what you tried to do and what the response was.
  52.  
  53.  killed processes, and abe to recover but now when I try to 
  54. : set line /dev/tty2a3
  55. : error: Sorry can't open connection on /dev/tty2a3
  56. : Is there a lock file or something somewhere keeping the port open and
  57. : unavailable?
  58. :
  59. If you have C-Kermit 6.0 or later, the problem would not be a lockfile.
  60. C-Kermit detects and handles stale lockfiles, and anyway it prints an
  61. informative message stating why the device could not be opened.
  62.  
  63. C-Kermit 6.0, while in CONNECT mode, runs in two forks (processes).  The
  64. most likely explanation is that you killed one but not the other.
  65.  
  66. C-Kermit 7.0:
  67.  
  68.   http://www.columbia.edu/kermit/ck70.html
  69.  
  70. runs in only one fork at all times (at least on HP-UX and most other modern
  71. UNIX varieties), has better serial port handling, and better error messages.
  72.  
  73. : How do I clear this? What do I need to do to get kermit to
  74. : transmit to pc properly?
  75. : Manual is on order, any help in mean time is appreciated. -Thanks
  76. The first question is: why not simply set up a getty on the HP-UX port and
  77. then log in to it from the PC?  That's the normal way of connecting a PC
  78. and a UNIX computer.
  79.  
  80. - Frank